balance — Matrix Balancing


\begin{rail}
Balance : 'balance' '(' Matrix ')' ;
\end{rail}
balance takes a square argument matrix and attempts to balance the input matrix so that the row and column norms are approximately equal. It returns a list with elements t and Ab, such that for an argument A:

Ab = t-1At

Ab is the balanced matrix, and t is referred to as the transformation matrix.

Subsections